home *** CD-ROM | disk | FTP | other *** search
/ Spidla DivX / DivX.bin / CatDV Pro 3.0.8 / lib / parser.jar / com / sun / xml / parser / DocumentBuilderFactoryImpl.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-02-23  |  560 b   |  13 lines

  1. package com.sun.xml.parser;
  2.  
  3. import javax.xml.parsers.DocumentBuilder;
  4. import javax.xml.parsers.DocumentBuilderFactory;
  5. import javax.xml.parsers.ParserConfigurationException;
  6.  
  7. public class DocumentBuilderFactoryImpl extends DocumentBuilderFactory {
  8.    public DocumentBuilder newDocumentBuilder() throws ParserConfigurationException {
  9.       DocumentBuilderImpl var1 = new DocumentBuilderImpl(this);
  10.       return var1;
  11.    }
  12. }
  13.